projects
/
gtk4.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
0611370
)
window: Fix the default value of mnemonics-visible
author
Matthias Clasen
<mclasen@redhat.com>
Sun, 23 Jun 2019 14:55:10 +0000
(14:55 +0000)
committer
Matthias Clasen
<mclasen@redhat.com>
Sun, 23 Jun 2019 14:59:17 +0000
(10:59 -0400)
They aren't visible, so why should the property
be TRUE?
gtk/gtkwindow.c
patch
|
blob
|
history
diff --git
a/gtk/gtkwindow.c
b/gtk/gtkwindow.c
index 74110cc5c3c5c74f8d1bbbd53ab9baf22b9fad04..3730841f36d5147cf97ccf77cb2bd729cc1caa21 100644
(file)
--- a/
gtk/gtkwindow.c
+++ b/
gtk/gtkwindow.c
@@
-903,7
+903,7
@@
gtk_window_class_init (GtkWindowClass *klass)
g_param_spec_boolean ("mnemonics-visible",
P_("Mnemonics Visible"),
P_("Whether mnemonics are currently visible in this window"),
-
TRU
E,
+
FALS
E,
GTK_PARAM_READWRITE|G_PARAM_EXPLICIT_NOTIFY);
/**